int a = 5, b;

b = ++a; //pre-incremento

//a=6 b=6

a = --b + b--;

//a=10  b=4

System.out.println (a);
System.out.println (b);
